home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / ver_cont / cvs-1.8 / cvs-1 / cvs-1.8.1 / windows-NT / Makefile.in < prev    next >
Encoding:
Makefile  |  1996-05-06  |  1.2 KB  |  71 lines

  1. #### Under Windows NT and Microsoft Visual C++, we use cvsnt.mak, not
  2. #### this makefile.  However, we need this file in order for 'make
  3. #### dist' to work properly on Unix machines.
  4.  
  5. srcdir     = @srcdir@
  6. top_srcdir = @top_srcdir@
  7. cvs_srcdir = @top_srcdir@/src
  8. VPATH      = @srcdir@
  9.  
  10. SHELL = /bin/sh
  11.  
  12. prefix = @prefix@
  13. exec_prefix = @exec_prefix@
  14.  
  15.  
  16. HEADERS = \
  17.   config.h \
  18.   ndir.h \
  19.   options.h \
  20.   pwd.h \
  21.   rcmd.h
  22. SOURCES = \
  23.   filesubr.c \
  24.   mkdir.c \
  25.   ndir.c \
  26.   pwd.c \
  27.   rcmd.c \
  28.   run.c \
  29.   startserver.c \
  30.   strippath.c \
  31.   stripslash.c \
  32.   waitpid.c \
  33.   win32.c
  34. DISTFILES = ${HEADERS} ${SOURCES} \
  35.   README ChangeLog Makefile.in .cvsignore
  36.  
  37. all:
  38.  
  39. .PHONY: all install uninstall
  40. all install uninstall:
  41.  
  42. .PHONY: tags TAGS
  43. tags TAGS:
  44.  
  45. .PHONY: ls
  46. ls:
  47.     @echo ${DISTFILES}
  48.  
  49. .PHONY: clean distclean realclean mostlyclean
  50. clean realclean mostlyclean:
  51.  
  52. distclean:
  53.     rm -f Makefile
  54.  
  55. .PHONY: lint
  56. lint:
  57.  
  58. .PHONY: dist-dir
  59. dist-dir:
  60.     mkdir ${DISTDIR}
  61.     for i in ${DISTFILES}; do \
  62.       ln $(srcdir)/$${i} ${DISTDIR}; \
  63.     done
  64.  
  65. clean:
  66.     @echo make clean does nothing in windows-NT subdir
  67.  
  68. subdir = windows-NT
  69. Makefile: ../config.status Makefile.in
  70.     cd .. && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status
  71.